home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / patch12.zip / MALLOC.C < prev    next >
C/C++ Source or Header  |  1990-05-30  |  13KB  |  468 lines

  1. /*
  2.  * @(#)nmalloc.c 1 (Caltech) 2/21/82
  3.  *
  4.  *    U of M Modified: 20 Jun 1983 ACT: strange hacks for Emacs
  5.  *
  6.  *    Nov 1983, Mike@BRL, Added support for 4.1C/4.2 BSD.
  7.  *
  8.  * This is a very fast storage allocator.  It allocates blocks of a small 
  9.  * number of different sizes, and keeps free lists of each size.  Blocks
  10.  * that don't exactly fit are passed up to the next larger size.  In this 
  11.  * implementation, the available sizes are (2^n)-4 (or -16) bytes long.
  12.  * This is designed for use in a program that uses vast quantities of
  13.  * memory, but bombs when it runs out.  To make it a little better, it
  14.  * warns the user when he starts to get near the end.
  15.  *
  16.  * June 84, ACT: modified rcheck code to check the range given to malloc,
  17.  * rather than the range determined by the 2-power used.
  18.  *
  19.  * Jan 85, RMS: calls malloc_warning to issue warning on nearly full.
  20.  * No longer Emacs-specific; can serve as all-purpose malloc for GNU.
  21.  * You should call malloc_init to reinitialize after loading dumped Emacs.
  22.  * Call malloc_stats to get info on memory stats if MSTATS turned on.
  23.  * realloc knows how to return same block given, just changing its size,
  24.  * if the power of 2 is correct.
  25.  */
  26.  
  27. /*
  28.  * nextf[i] is the pointer to the next free block of size 2^(i+3).  The
  29.  * smallest allocatable block is 8 bytes.  The overhead information will
  30.  * go in the first int of the block, and the returned pointer will point
  31.  * to the second.
  32.  *
  33. #ifdef MSTATS
  34.  * nmalloc[i] is the difference between the number of mallocs and frees
  35.  * for a given block size.
  36. #endif /* MSTATS */
  37.  */
  38.  
  39. #define ISALLOC ((char) 0xf7)    /* magic byte that implies allocation */
  40. #define ISFREE ((char) 0x54)    /* magic byte that implies free block */
  41.                 /* this is for error checking only */
  42.  
  43. extern char etext;
  44.  
  45. /* end of the program; can be changed by calling init_malloc */
  46. static char *endofpure = &etext;
  47.  
  48. #ifdef MSTATS
  49. static int nmalloc[30];
  50. static int nmal, nfre;
  51. #endif /* MSTATS */
  52.  
  53. /* If range checking is not turned on, all we have is a flag indicating
  54.    whether memory is allocated, an index in nextf[], and a size field; to
  55.    realloc() memory we copy either size bytes or 1<<(index+3) bytes depending
  56.    on whether the former can hold the exact size (given the value of
  57.    'index').  If range checking is on, we always need to know how much space
  58.    is allocated, so the 'size' field is never used. */
  59.  
  60. struct mhead {
  61.     char     mh_alloc;    /* ISALLOC or ISFREE */
  62.     char     mh_index;    /* index in nextf[] */
  63. /* Remainder are valid only when block is allocated */
  64.     unsigned short mh_size;    /* size, if < 0x10000 */
  65. #ifdef rcheck
  66.     unsigned mh_nbytes;    /* number of bytes allocated */
  67.     int      mh_magic4;    /* should be == MAGIC4 */
  68. #endif /* rcheck */
  69.     };
  70.  
  71. /* Access free-list pointer of a block.
  72.   It is stored at block + 4.
  73.   This is not a field in the mhead structure
  74.   because we want sizeof (struct mhead)
  75.   to describe the overhead for when the block is in use,
  76.   and we do not want the free-list pointer to count in that.  */
  77.  
  78. #define CHAIN(a) \
  79.   (*(struct mhead **) (sizeof (char *) + (char *) (a)))
  80.  
  81. #ifdef rcheck
  82.  
  83. /* To implement range checking, we write magic values in at the beginning and
  84.    end of each allocated block, and make sure they are undisturbed whenever a
  85.    free or a realloc occurs. */
  86. /* Written in each of the 4 bytes following the block's real space */
  87. #define MAGIC1 0x55
  88. /* Written in the 4 bytes before the block's real space */
  89. #define MAGIC4 0x55555555
  90. #define ASSERT(p) if (!(p)) botch("p"); else
  91. static
  92. botch(s)
  93.     char *s;
  94. {
  95.  
  96.     printf("assertion botched: %s\n", s);
  97.     abort();
  98. }
  99. #define EXTRA  4        /* 4 bytes extra for MAGIC1s */
  100. #else
  101. #define ASSERT(p)
  102. #define EXTRA  0
  103. #endif /* rcheck */
  104.  
  105. /* nextf[i] is free list of blocks of size 2**(i + 3)  */
  106.  
  107. static struct mhead *nextf[30];
  108.  
  109. #ifdef    M_WARN
  110. /* Number of bytes of writable memory we can expect to be able to get */
  111. static int  lim_data;
  112. /* Level number of warnings already issued.
  113.   0 -- no warnings issued.
  114.   1 -- 75% warning already issued.
  115.   2 -- 85% warning already issued.
  116. */
  117. static int  warnlevel;
  118. #endif /* M_WARN */
  119.  
  120. /* nonzero once initial bunch of free blocks made */
  121. static int gotpool;
  122.  
  123. /* Cause reinitialization based on job parameters;
  124.   also declare where the end of pure storage is. */
  125. malloc_init (end)
  126.     char *end; {
  127.     endofpure = end;
  128. #ifdef    M_WARN
  129.     lim_data = 0;
  130.     warnlevel = 0;
  131. #endif /* M_WARN */
  132.     }
  133.  
  134. static
  135. morecore (nu)            /* ask system for more memory */
  136.     register int nu; {        /* size index to get more of  */
  137.     char   *sbrk ();
  138.     register char  *cp;
  139.     register int    nblks;
  140.     register int    siz;
  141.  
  142. #ifdef    M_WARN
  143. #ifndef BSD42
  144. #ifdef USG
  145.     extern long ulimit ();
  146.     if (lim_data == 0)        /* find out how much we can get */
  147.         lim_data = ulimit (3, 0) - TEXT_START;
  148. #else    /*HMS: was endif */
  149.     if (lim_data == 0)        /* find out how much we can get */
  150.         lim_data = vlimit (LIM_DATA, -1);
  151. #endif /* USG */    /HMS:* was not here */
  152. #else
  153.     if (lim_data == 0) {
  154.         struct rlimit   XXrlimit;
  155.  
  156.         getrlimit (RLIMIT_DATA, &XXrlimit);
  157.         lim_data = XXrlimit.rlim_cur;}    /* soft limit */
  158. #endif /* BSD42 */
  159. #endif /* M_WARN */
  160.  
  161.     /* On initial startup, get two blocks of each size up to 1k bytes */
  162.     if (!gotpool)
  163.         getpool (), getpool (), gotpool = 1;
  164.  
  165.     /* Find current end of memory and issue warning if getting near max */
  166.  
  167.     cp = sbrk (0);
  168.     siz = cp - endofpure;
  169. #ifdef    M_WARN
  170.     switch (warnlevel) {
  171.         case 0: 
  172.         if (siz > (lim_data / 4) * 3) {
  173.             warnlevel++;
  174.             malloc_warning ("Warning: past 75% of memory limit");}
  175.         break;
  176.         case 1: 
  177.         if (siz > (lim_data / 20) * 17) {
  178.             warnlevel++;
  179.             malloc_warning ("Warning: past 85% of memory limit");}
  180.         break;
  181.         case 2: 
  182.         if (siz > (lim_data / 20) * 19) {
  183.             warnlevel++;
  184.             malloc_warning ("Warning: past 95% of memory limit");}
  185.         break;}
  186. #endif /* M_WARN */
  187.  
  188.     if ((int) cp & 0x3ff)    /* land on 1K boundaries */
  189.         sbrk (1024 - ((int) cp & 0x3ff));
  190.  
  191.     /* Take at least 2k, and figure out how many blocks of the desired size we're about to get */
  192.     nblks = 1;
  193.     if ((siz = nu) < 8)
  194.         nblks = 1 << ((siz = 8) - nu);
  195.  
  196.     if ((cp = sbrk (1 << (siz + 3))) == (char *) -1)
  197.         return;            /* no more room! */
  198.     if ((int) cp & 7) {        /* shouldn't happen, but just in case */
  199.         cp = (char *) (((int) cp + 8) & ~7);
  200.         nblks--;}
  201.  
  202.     /* save new header and link the nblks blocks together */
  203.     nextf[nu] = (struct mhead *) cp;
  204.     siz = 1 << (nu + 3);
  205.     while (1) {
  206.         ((struct mhead *) cp) -> mh_alloc = ISFREE;
  207.         ((struct mhead *) cp) -> mh_index = nu;
  208.         if (--nblks <= 0) break;
  209.         CHAIN ((struct mhead *) cp) = (struct mhead *) (cp + siz);
  210.         cp += siz;}
  211. /*    CHAIN ((struct mhead *) cp) = 0;    /* since sbrk() returns cleared core, this is already set */
  212.     }
  213.  
  214. static
  215. getpool () {
  216.     register int nu;
  217.     register char *cp = sbrk (0);
  218.  
  219.     if ((int) cp & 0x3ff)    /* land on 1K boundaries */
  220.         sbrk (1024 - ((int) cp & 0x3ff));
  221.  
  222.     /* Get 2k of storage */
  223.  
  224.     cp = sbrk (04000);
  225.     if (cp == (char *) -1)
  226.         return;
  227.  
  228.     /* Divide it into an initial 8-word block
  229.     plus one block of size 2**nu for nu = 3 ... 10.  */
  230.  
  231.     CHAIN (cp) = nextf[0];
  232.     nextf[0] = (struct mhead *) cp;
  233.     ((struct mhead *) cp) -> mh_alloc = ISFREE;
  234.     ((struct mhead *) cp) -> mh_index = 0;
  235.     cp += 8;
  236.  
  237.     for (nu = 0; nu < 7; nu++) {
  238.         CHAIN (cp) = nextf[nu];
  239.         nextf[nu] = (struct mhead *) cp;
  240.         ((struct mhead *) cp) -> mh_alloc = ISFREE;
  241.         ((struct mhead *) cp) -> mh_index = nu;
  242.         cp += 8 << nu;}}
  243.  
  244. char *
  245. malloc (n)        /* get a block */
  246.     unsigned n; {
  247.     register struct  mhead *p;
  248.     register unsigned int  nbytes;
  249.     register int    nunits = 0;
  250.  
  251.     /* Figure out how many bytes are required, rounding up to the nearest
  252.     multiple of 4, then figure out which nextf[] area to use */
  253.     nbytes = (n + sizeof *p + EXTRA + 3) & ~3;
  254.         {
  255.         register unsigned int   shiftr = (nbytes - 1) >> 2;
  256.  
  257.         while (shiftr >>= 1)
  258.             nunits++;
  259.         }
  260.  
  261.     /* If there are no blocks of the appropriate size, go get some */
  262.     /* COULD SPLIT UP A LARGER BLOCK HERE ... ACT */
  263.     if (nextf[nunits] == 0)
  264.         morec